7c07862c844ea89da0598203dd6feceadf05329b,javasrc/src/org/ccnx/ccn/test/profiles/metadata/ThumbnailTestRepo.java,ThumbnailTestRepo,testThumbnails,#,75

Before Change


		cso.save();
		cso.close();
		ContentVerifier putVerifier = new ContentObject.SimpleVerifier(putHandle.getDefaultPublisher());
		ContentName thumbName = ThumbnailProfile.getLatestVersion(thumbNailBase, "image.png".getBytes(), cso.getContentPublisher(),
					SystemConfiguration.LONG_TIMEOUT, putVerifier, putHandle);
		
		System.out.println("Check that we can retrieve a simple thumbnail");
		RepositoryFileOutputStream thumbImage1 = new RepositoryFileOutputStream(thumbName, putHandle);

After Change


		CCNStringObject cso = new CCNStringObject(thumbNailBase, "thumbNailBase", CCNFlowControl.SaveType.REPOSITORY, putHandle);
		cso.save();
		cso.close();
		ContentName origVersion = SegmentationProfile.segmentRoot(VersioningProfile.getLatestVersion(thumbNailBase, cso.getContentPublisher(), 
				SystemConfiguration.LONG_TIMEOUT, putHandle.defaultVerifier(), getHandle).name());		
		ContentName thumbName = ThumbnailProfile.getLatestVersion(thumbNailBase, "image.png".getBytes(),
					SystemConfiguration.LONG_TIMEOUT, putHandle);